home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-03-28 | 971 b | 37 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="6"
- "COUNT"="5"
- "UIPATH"="Information\Core"
- "NAME"="Windows Version"
- "VERSION"="0.004"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Windows 95 (W95)"
- "TEXT 2"="Windows NT (WNT)"
- "TEXT 3"="Windows 98 (W98)"
- "TEXT 4"="Windows 2000 (W2K)"
- "TEXT 5"="Windows Millennium (WinME)"
- "DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
-
-
- 'Called when the Plugin is started
- Sub Plugin_Initialize
- i=GetWinVer
- SetUIElement i,True
- Disable
- End Sub
-
- 'Called when the Plugin should validate the Data the user has entered
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- 'Called when the Plugin should apply the changes
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- End Sub
-
- 'Called when the Plugin is about to be removed from memory
- Sub Plugin_Terminate
- End Sub
-